home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / Astro / astrolog / Source / Makefile < prev    next >
Encoding:
Makefile  |  1995-06-12  |  1.3 KB  |  32 lines

  1. # Astrolog (Version 4.10) File: Makefile (Unix version)
  2. #
  3. # IMPORTANT NOTICE: the graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1994 by Walter D. Pullen
  5. # (cruiser1@stein.u.washington.edu). Permission is granted to freely
  6. # use and distribute these routines provided one doesn't sell,
  7. # restrict, or profit from them in any way. Modification is allowed
  8. # provided these notices remain with any altered or edited versions of
  9. # the program.
  10. #
  11. # First created 11/21/1991.
  12. #
  13. # This Makefile is included only for convenience. One could easily compile
  14. # Astrolog on a Unix system by hand with the command:
  15. # % cc -c -O *.c; cc -o astrolog *.o -lm -lX11
  16. #
  17. # Generally, all that needs to be done to compile once astrolog.h has been
  18. # edited, is compile each source file, and link them together with the math
  19. # library, and if applicable, the main X library.
  20. #
  21. NAME = astrolog
  22. OBJ = data.o general.o formulas.o charts.o options.o intrpret.o driver.o \
  23.   xdata.o xgeneral.o xcharts.o xoptions.o xdriver.o placalc.o
  24. # If you don't have X windows, delete the "-lX11" part from the line below:
  25. LIBS = -lm 
  26. CFLAGS =  -arch m68k -arch i386 -arch hppa -arch sparc -O
  27.  
  28. astrolog:: $(OBJ)
  29.     cc  -arch m68k -arch i386 -arch hppa -arch sparc -o $(NAME) $(OBJ) $(LIBS)
  30.     strip $(NAME)
  31. #
  32.